home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / prgs / ExternFunc / sub.c < prev    next >
Text File  |  1996-09-10  |  169b  |  13 lines

  1. /* 
  2. ** Subtract two long integers passed
  3. ** by value and return the result in 
  4. ** a third parameter by reference.
  5. */
  6.  
  7. subtract(x,y,z)
  8. long x,y;
  9. long *z;
  10. {
  11.   *z = x-y;
  12. }
  13.